<!DOCTYPE html>
<html>

<head>
<meta charset="ISO-8859-1">
<title>Employee Page</title>
</head>
<body bgcolor="lightgray" >
<center>
<h2>Add New Employee</h2>
</center>
<form action="EmployeeRegistration" method="get">
<center>
<table>
<tr>
<td>Name</td>
<td><input type="text" value="" name="name"></td>
</tr>
<tr><td>Email</td><td><input type="text" value="" name="email"></td></tr>
<tr><td>Password</td><td><input type="password" value="" name="password"></td></tr>
<tr>
<td>Country</td>
<td>
<select name="country" style="width:150px">
<option>India</option>
<option>US</option>
<option>Japan</option>
<option>Nepal</option>
<option>China</option>
</select>
</td>
</tr>
</table>
</center>
<br/>
<center>
<input type="submit" value="Save Employee">
</center>
</form>
</body>
</html>